projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a74c50c
)
(w32_query_font): Compare names by ignoring case.
author
Kenichi Handa
<handa@m17n.org>
Fri, 4 Aug 2006 02:49:58 +0000
(
02:49
+0000)
committer
Kenichi Handa
<handa@m17n.org>
Fri, 4 Aug 2006 02:49:58 +0000
(
02:49
+0000)
src/w32fns.c
patch
|
blob
|
history
diff --git
a/src/w32fns.c
b/src/w32fns.c
index 68fcced88c253b6ee0764494926f434609c3313c..a3df8de533811957924853175fa270c0ca939dac 100644
(file)
--- a/
src/w32fns.c
+++ b/
src/w32fns.c
@@
-6207,7
+6207,7
@@
w32_query_font (struct frame *f, char *fontname)
for (i = 0; i < one_w32_display_info.n_fonts ;i++, pfi++)
{
- if (strcmp(pfi->name, fontname) == 0) return pfi;
+ if (strc
asec
mp(pfi->name, fontname) == 0) return pfi;
}
return NULL;